home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / misc / emu / msh-156.lha / util / setwindow.c < prev    next >
C/C++ Source or Header  |  1993-12-30  |  7KB  |  237 lines

  1. /*
  2.  *  Source machine generated by GadToolsBox V2.0b
  3.  *  which is (c) Copyright 1991-1993 Jaba Development
  4.  *
  5.  *  GUI Designed by : Olaf Seibert
  6.  */
  7.  
  8. #include <exec/types.h>
  9. #include <intuition/intuition.h>
  10. #include <intuition/classes.h>
  11. #include <intuition/classusr.h>
  12. #include <intuition/imageclass.h>
  13. #include <intuition/gadgetclass.h>
  14. #include <libraries/gadtools.h>
  15. #include <graphics/displayinfo.h>
  16. #include <graphics/gfxbase.h>
  17. #include <clib/exec_protos.h>
  18. #include <clib/intuition_protos.h>
  19. #include <clib/gadtools_protos.h>
  20. #include <clib/graphics_protos.h>
  21. #include <clib/utility_protos.h>
  22. #include <string.h>
  23. #include "setwindow.h"
  24.  
  25. struct Screen          *Scr = NULL;
  26. UBYTE              *PubScreenName = NULL;
  27. APTR               VisualInfo = NULL;
  28. struct Window          *MSHSettingsWnd = NULL;
  29. struct Gadget          *MSHSettingsGList = NULL;
  30. struct Menu          *MSHSettingsMenus = NULL;
  31. UWORD               MSHSettingsZoom[4];
  32. struct Gadget          *MSHSettingsGadgets[8];
  33. UWORD               MSHSettingsLeft = 10;
  34. UWORD               MSHSettingsTop = 14;
  35. UWORD               MSHSettingsWidth = 447;
  36. UWORD               MSHSettingsHeight = 92;
  37. UBYTE              *MSHSettingsWdt = (UBYTE *)"MSH Settings";
  38. struct TextAttr       *Font, Attr;
  39. UWORD               FontX, FontY;
  40. UWORD               OffX, OffY;
  41.  
  42. UBYTE *CONVERSION0Labels[] = {
  43.     (UBYTE *)"None",
  44.     (UBYTE *)"A: PC Ascii",
  45.     (UBYTE *)"B: ST Ascii",
  46.     NULL };
  47.  
  48. struct NewMenu MSHSettingsNewMenu[] = {
  49.     NM_TITLE, (STRPTR)"Project", NULL, 0, NULL, NULL,
  50.     NM_ITEM, (STRPTR)"Hide", (STRPTR)"H", NM_ITEMDISABLED, 0L, NULL,
  51.     NM_ITEM, (STRPTR)"Quit", (STRPTR)"Q", 0, 0L, NULL,
  52.     NM_END, NULL, NULL, 0, 0L, NULL };
  53.  
  54. UWORD MSHSettingsGTypes[] = {
  55.     CHECKBOX_KIND,
  56.     CHECKBOX_KIND,
  57.     CHECKBOX_KIND,
  58.     CHECKBOX_KIND,
  59.     CHECKBOX_KIND,
  60.     CYCLE_KIND,
  61.     BUTTON_KIND,
  62.     LISTVIEW_KIND
  63. };
  64.  
  65. struct NewGadget MSHSettingsNGad[] = {
  66.     206, 19, 26, 11, (UBYTE *)"Check JUMP in bootblock", NULL, GD_BOOTJMP, PLACETEXT_RIGHT, NULL, NULL,
  67.     206, 5, 26, 11, (UBYTE *)"40 track mode", NULL, GD_MD40TRACK, PLACETEXT_RIGHT, NULL, NULL,
  68.     222, 47, 26, 11, (UBYTE *)"Check bootblock sanity", NULL, GD_SANITY, PLACETEXT_RIGHT, NULL, NULL,
  69.     238, 61, 26, 11, (UBYTE *)"Not sane -> defaults", NULL, GD_SAN_DEFAULT, PLACETEXT_RIGHT, NULL, NULL,
  70.     206, 33, 26, 11, (UBYTE *)"Always default bootblock", NULL, GD_USE_DEFAULT, PLACETEXT_RIGHT, NULL, NULL,
  71.     33, 75, 121, 12, (UBYTE *)"Default conversion", NULL, GD_CONVERSION, PLACETEXT_ABOVE, NULL, NULL,
  72.     171, 75, 57, 12, (UBYTE *)"Load", NULL, GD_LOAD, PLACETEXT_IN, NULL, NULL,
  73.     16, 19, 158, 40, (UBYTE *)"Available handlers", NULL, GD_HANDLERS, PLACETEXT_ABOVE, NULL, NULL
  74. };
  75.  
  76. ULONG MSHSettingsGTags[] = {
  77.     (GTCB_Checked), TRUE, (TAG_DONE),
  78.     (TAG_DONE),
  79.     (GTCB_Checked), TRUE, (TAG_DONE),
  80.     (GTCB_Checked), TRUE, (TAG_DONE),
  81.     (TAG_DONE),
  82.     (GTCY_Labels), (ULONG)&CONVERSION0Labels[ 0 ], (TAG_DONE),
  83.     (TAG_DONE),
  84.     (GTLV_ShowSelected), NULL, (TAG_DONE)
  85. };
  86.  
  87. static UWORD ComputeX( UWORD value )
  88. {
  89.     return(( UWORD )((( FontX * value ) + 4 ) / 8 ));
  90. }
  91.  
  92. static UWORD ComputeY( UWORD value )
  93. {
  94.     return(( UWORD )((( FontY * value ) + 4 ) / 8 ));
  95. }
  96.  
  97. static void ComputeFont( UWORD width, UWORD height )
  98. {
  99.     Font = &Attr;
  100.     Font->ta_Name = (STRPTR)Scr->RastPort.Font->tf_Message.mn_Node.ln_Name;
  101.     Font->ta_YSize = FontY = Scr->RastPort.Font->tf_YSize;
  102.     FontX = Scr->RastPort.Font->tf_XSize;
  103.  
  104.     OffX = Scr->WBorLeft;
  105.     OffY = Scr->RastPort.TxHeight + Scr->WBorTop + 1;
  106.  
  107.     if ( width && height ) {
  108.         if (( ComputeX( width ) + OffX + Scr->WBorRight ) > Scr->Width )
  109.             goto UseTopaz;
  110.         if (( ComputeY( height ) + OffY + Scr->WBorBottom ) > Scr->Height )
  111.             goto UseTopaz;
  112.     }
  113.     return;
  114.  
  115. UseTopaz:
  116.     Font->ta_Name = (STRPTR)"topaz.font";
  117.     FontX = FontY = Font->ta_YSize = 8;
  118. }
  119.  
  120. int SetupScreen( void )
  121. {
  122.     if ( ! ( Scr = LockPubScreen( PubScreenName )))
  123.         return( 1L );
  124.  
  125.     ComputeFont( 0, 0 );
  126.  
  127.     if ( ! ( VisualInfo = GetVisualInfo( Scr, TAG_DONE )))
  128.         return( 2L );
  129.  
  130.     return( 0L );
  131. }
  132.  
  133. void CloseDownScreen( void )
  134. {
  135.     if ( VisualInfo ) {
  136.         FreeVisualInfo( VisualInfo );
  137.         VisualInfo = NULL;
  138.     }
  139.  
  140.     if ( Scr        ) {
  141.         UnlockPubScreen( NULL, Scr );
  142.         Scr = NULL;
  143.     }
  144. }
  145.  
  146. int OpenMSHSettingsWindow( void )
  147. {
  148.     struct NewGadget    ng;
  149.     struct Gadget    *g;
  150.     UWORD        lc, tc;
  151.     UWORD        wleft = MSHSettingsLeft, wtop = MSHSettingsTop, ww, wh;
  152.  
  153.     ComputeFont( MSHSettingsWidth, MSHSettingsHeight );
  154.  
  155.     ww = ComputeX( MSHSettingsWidth );
  156.     wh = ComputeY( MSHSettingsHeight );
  157.  
  158.     if (( wleft + ww + OffX + Scr->WBorRight ) > Scr->Width ) wleft = Scr->Width - ww;
  159.     if (( wtop + wh + OffY + Scr->WBorBottom ) > Scr->Height ) wtop = Scr->Height - wh;
  160.  
  161.     if ( ! ( g = CreateContext( &MSHSettingsGList )))
  162.         return( 1L );
  163.  
  164.     for( lc = 0, tc = 0; lc < MSHSettings_CNT; lc++ ) {
  165.  
  166.         CopyMem((char * )&MSHSettingsNGad[ lc ], (char * )&ng, (long)sizeof( struct NewGadget ));
  167.  
  168.         ng.ng_VisualInfo = VisualInfo;
  169.         ng.ng_TextAttr     = Font;
  170.         ng.ng_LeftEdge     = OffX + ComputeX( ng.ng_LeftEdge );
  171.         ng.ng_TopEdge     = OffY + ComputeY( ng.ng_TopEdge );
  172.         ng.ng_Width     = ComputeX( ng.ng_Width );
  173.         ng.ng_Height     = ComputeY( ng.ng_Height);
  174.  
  175.         MSHSettingsGadgets[ lc ] = g = CreateGadgetA((ULONG)MSHSettingsGTypes[ lc ], g, &ng, ( struct TagItem * )&MSHSettingsGTags[ tc ] );
  176.  
  177.         while( MSHSettingsGTags[ tc ] ) tc += 2;
  178.         tc++;
  179.  
  180.         if ( NOT g )
  181.             return( 2L );
  182.     }
  183.  
  184.     if ( ! ( MSHSettingsMenus = CreateMenus( MSHSettingsNewMenu, GTMN_FrontPen, 0L, TAG_DONE )))
  185.         return( 3L );
  186.  
  187.     LayoutMenus( MSHSettingsMenus, VisualInfo, TAG_DONE );
  188.  
  189.     MSHSettingsZoom[0] = MSHSettingsLeft;
  190.     MSHSettingsZoom[1] = MSHSettingsTop;
  191.     if ( MSHSettingsWdt )
  192.         MSHSettingsZoom[2] = TextLength( &Scr->RastPort, (UBYTE *)MSHSettingsWdt, strlen((char *)MSHSettingsWdt )) + 80;
  193.     else
  194.         MSHSettingsZoom[2]  = 80L;
  195.         MSHSettingsZoom[3] = Scr->WBorTop + Scr->RastPort.TxHeight + 1;
  196.  
  197.     if ( ! ( MSHSettingsWnd = OpenWindowTags( NULL,
  198.                 WA_Left,    wleft,
  199.                 WA_Top,     wtop,
  200.                 WA_Width,    ww + OffX + Scr->WBorRight,
  201.                 WA_Height,    wh + OffY + Scr->WBorBottom,
  202.                 WA_IDCMP,    CHECKBOXIDCMP|CYCLEIDCMP|BUTTONIDCMP|LISTVIEWIDCMP|IDCMP_MENUPICK|IDCMP_CLOSEWINDOW|IDCMP_DISKINSERTED|IDCMP_DISKREMOVED|IDCMP_REFRESHWINDOW,
  203.                 WA_Flags,    WFLG_DRAGBAR|WFLG_DEPTHGADGET|WFLG_CLOSEGADGET|WFLG_SMART_REFRESH|WFLG_ACTIVATE,
  204.                 WA_Gadgets,    MSHSettingsGList,
  205.                 WA_Title,    MSHSettingsWdt,
  206.                 WA_ScreenTitle, "MSH Settings",
  207.                 WA_PubScreen,    Scr,
  208.                 WA_Zoom,    MSHSettingsZoom,
  209.                 WA_AutoAdjust,    TRUE,
  210.                 TAG_DONE )))
  211.     return( 4L );
  212.  
  213.     SetMenuStrip( MSHSettingsWnd, MSHSettingsMenus );
  214.     GT_RefreshWindow( MSHSettingsWnd, NULL );
  215.  
  216.     return( 0L );
  217. }
  218.  
  219. void CloseMSHSettingsWindow( void )
  220. {
  221.     if ( MSHSettingsMenus      ) {
  222.         ClearMenuStrip( MSHSettingsWnd );
  223.         FreeMenus( MSHSettingsMenus );
  224.         MSHSettingsMenus = NULL;    }
  225.  
  226.     if ( MSHSettingsWnd        ) {
  227.         CloseWindow( MSHSettingsWnd );
  228.         MSHSettingsWnd = NULL;
  229.     }
  230.  
  231.     if ( MSHSettingsGList      ) {
  232.         FreeGadgets( MSHSettingsGList );
  233.         MSHSettingsGList = NULL;
  234.     }
  235. }
  236.  
  237.